home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
prog
/
word.arj
/
FLI02.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-01-28
|
481b
|
25 lines
#include <conio.h>
#include <wgt.h>
#include <wgtfli.h>
// WordUp Graphics Toolkit FLI demo program
// Simply loads in an FLI file and plays the animation.
// Shows FLI on a virtual screen.
void main(void)
{
vga256();
fliscreen=wnewblock(0,0,319,199);
openfli("wordup.fli");
do {
nextframe();
wnormscreen();
copyfli();
}while (!kbhit());
getch();
closefli();
wfreeblock(fliscreen);
textmode(C80);
}